DataSource for Entity Framework in WPF
C1.LiveLinq.Indexing Namespace / IndexCollection<T> Class / Remove Method / Remove(LambdaExpression) Method
Key selector expression of an index, see IndexDefinition<T>.KeySelector.

In This Topic
    Remove(LambdaExpression) Method
    In This Topic
    Removes an index from the collection.
    Syntax
    'Declaration
     
    Public Overloads Overrides Function Remove( _
       ByVal keySelector As LambdaExpression _
    ) As Boolean
    public override bool Remove( 
       LambdaExpression keySelector
    )

    Parameters

    keySelector
    Key selector expression of an index, see IndexDefinition<T>.KeySelector.

    Return Value

    true if an index has been removed; false if there is no index with the given key selector in the collection.
    See Also